home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Macintosh Tracker Source / Tracker Client Folder / CNumberEdit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-19  |  620 b   |  25 lines  |  [TEXT/KAHL]

  1. /* CNumberEdit.h */
  2.  
  3. #pragma once
  4.  
  5. #include "CTextEdit.h"
  6. #include "CSimpleButton.h"
  7.  
  8. struct    CNumberEdit    :    CTextEdit
  9.     {
  10.         ulong                    LastChange;
  11.         MyBoolean            Dirty;
  12.  
  13.         void                INumberText(LongPoint TheStart, LongPoint TheExtent,
  14.                                     short TheFontID, short ThePointSize, CWindow* TheWindow,
  15.                                     CEnclosure* TheEnclosure);
  16.         MyBoolean        DoKeyDown(MyEventRec Event);
  17.         MyBoolean        DoMenuCommand(ushort MenuCommandValue);
  18.         long                GetValue(void);
  19.         void                SetValue(long Value);
  20.         void                StoreValue(void);
  21.         void                DoIdle(long Stupid);
  22.         MyBoolean        RelinquishKeyReceivership(void);
  23.         void                DoDisable(void);
  24.     };
  25.